home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 009 / proff / debug.h next >
C/C++ Source or Header  |  1995-03-17  |  126b  |  15 lines

  1.  
  2.  
  3.  
  4. /*
  5. #define DEBUG
  6. #define PROFILE
  7. */
  8.  
  9. #ifdef PROFILE
  10. #define dprintf(str)    printf((str));
  11. #else
  12. #define dprintf(str)
  13. #endif
  14.  
  15.